home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1996 #15 / Monster Media Number 15 (Monster Media)(July 1996).ISO / bbs_util / bsrc_260.zip / SRC.ZIP / BTLNG.C < prev    next >
C/C++ Source or Header  |  1996-02-20  |  7KB  |  202 lines

  1. /*--------------------------------------------------------------------------*/
  2. /*                                                                          */
  3. /*                                                                          */
  4. /*      ------------         Bit-Bucket Software, Co.                       */
  5. /*      \ 10001101 /         Writers and Distributors of                    */
  6. /*       \ 011110 /          Freely Available<tm> Software.                 */
  7. /*        \ 1011 /                                                          */
  8. /*         ------                                                           */
  9. /*                                                                          */
  10. /*              (C) Copyright 1987-96, Bit Bucket Software Co.              */
  11. /*                                                                          */
  12. /*                This module was written by Vince Perriello                */
  13. /*                                                                          */
  14. /*                    BinkleyTerm Language File Compiler                    */
  15. /*                                                                          */
  16. /*                                                                          */
  17. /*    For complete  details  of the licensing restrictions, please refer    */
  18. /*    to the License  agreement,  which  is published in its entirety in    */
  19. /*    the MAKEFILE and BT.C, and also contained in the file LICENSE.260.    */
  20. /*                                                                          */
  21. /*    USE  OF THIS FILE IS SUBJECT TO THE  RESTRICTIONS CONTAINED IN THE    */
  22. /*    BINKLEYTERM  LICENSING  AGREEMENT.  IF YOU DO NOT FIND THE TEXT OF    */
  23. /*    THIS  AGREEMENT IN ANY OF THE  AFOREMENTIONED FILES,  OR IF YOU DO    */
  24. /*    NOT HAVE THESE FILES,  YOU  SHOULD  IMMEDIATELY CONTACT BIT BUCKET    */
  25. /*    SOFTWARE CO.  AT ONE OF THE  ADDRESSES  LISTED BELOW.  IN NO EVENT    */
  26. /*    SHOULD YOU  PROCEED TO USE THIS FILE  WITHOUT HAVING  ACCEPTED THE    */
  27. /*    TERMS  OF  THE  BINKLEYTERM  LICENSING  AGREEMENT,  OR  SUCH OTHER    */
  28. /*    AGREEMENT AS YOU ARE ABLE TO REACH WITH BIT BUCKET SOFTWARE, CO.      */
  29. /*                                                                          */
  30. /*                                                                          */
  31. /* You can contact Bit Bucket Software Co. at any one of the following      */
  32. /* addresses:                                                               */
  33. /*                                                                          */
  34. /* Bit Bucket Software Co.        FidoNet  1:104/501, 1:343/491             */
  35. /* P.O. Box 460398                AlterNet 7:42/1491                        */
  36. /* Aurora, CO 80046               BBS-Net  86:2030/1                        */
  37. /*                                Internet f491.n343.z1.fidonet.org         */
  38. /*                                                                          */
  39. /* Please feel free to contact us at any time to share your comments about  */
  40. /* our software and/or licensing policies.                                  */
  41. /*                                                                          */
  42. /*--------------------------------------------------------------------------*/
  43.  
  44. #include <stdio.h>
  45. #include <stdlib.h>
  46.  
  47. #include "language.h"
  48.  
  49. /*
  50.  * Assume average length of a string at 32 characters
  51.  *
  52.  */
  53.  
  54. char **pointers;
  55. short pointer_size;
  56.  
  57. struct _lang_hdr LangHdr = {0, 0};
  58.  
  59. char *memory;
  60. short memory_size;
  61.  
  62. struct _lang_hdr PrdctHdr = {0, 0};
  63. char *PrdctMem;
  64. char **PrdctTbl;
  65. char *PrdctUnknown;
  66.  
  67. short *TrmnlAccelAry;
  68. short TrmnlAccelCnt = 0;
  69. struct _key_fnc *TrmnlAccelTbl;
  70.  
  71. short *UnattendedAccelAry;
  72. short UnattendedAccelCnt = 0;
  73. struct _key_fnc *UnattendedAccelTbl;
  74.  
  75. struct _lang_hdr AnsiHdr = {0, 0};
  76. char *AnsiMem;
  77.  
  78. void main (int, char **);
  79. static void usage (void);
  80.  
  81. /*
  82.  * Read in a raw text file and write out a compiled BinkleyTerm
  83.  * language file.
  84.  *
  85.  */
  86.  
  87. void 
  88. main (int argc, char **argv)
  89. {
  90.     char *malloc_target;
  91.     int error;
  92.     int Idx;
  93.  
  94.     /*
  95.     * Print out the copyright notice.
  96.     */
  97.  
  98.     (void) fprintf (stderr, "BinkleyTerm Language File Compiler Version 2.60");
  99.     (void) fprintf (stderr, "\n(C) Copyright 1987-96, Bit Bucket Software, Co. ALL RIGHTS RESERVED.\n\n");
  100.  
  101.     /*
  102.     * Make sure we were called with the requisite number of arguments
  103.     *
  104.     */
  105.  
  106.     if (argc != 3)
  107.         usage ();
  108.  
  109.     /*
  110.     * Allocate space for the raw character array and for the
  111.     * pointer array
  112.     *
  113.     */
  114.  
  115.     malloc_target = malloc (MAX_MEMORY);
  116.     if (malloc_target == NULL)
  117.     {
  118.         fprintf (stderr, "Unable to allocate string memory\n");
  119.         exit (250);
  120.     }
  121.     memory = malloc_target;
  122.     memory_size = MAX_MEMORY;
  123.  
  124.     malloc_target = malloc ((MAX_STRINGS + 1) * (sizeof (char *)));
  125.  
  126.     if (malloc_target == NULL)
  127.     {
  128.         fprintf (stderr, "Unable to allocate pointer array\n");
  129.         exit (250);
  130.     }
  131.     pointers = (char **) malloc_target;
  132.     pointer_size = MAX_STRINGS;
  133.  
  134.     TrmnlAccelAry = calloc (MAX_KEYFNCS, sizeof (int));
  135.     TrmnlAccelTbl = calloc (MAX_KEYFNCS, sizeof (struct _key_fnc));
  136.     UnattendedAccelAry = calloc (MAX_KEYFNCS, sizeof (int));
  137.     UnattendedAccelTbl = calloc (MAX_KEYFNCS, sizeof (struct _key_fnc));
  138.  
  139.     /*
  140.     * Allocate space for the raw character array and for the
  141.     * pointer array
  142.     *
  143.     */
  144.  
  145.     malloc_target = malloc (MAX_PRDCTS * 32);
  146.     if (malloc_target == NULL)
  147.     {
  148.         fprintf (stderr, "Unable to allocate product string memory\n");
  149.         exit (250);
  150.     }
  151.     PrdctMem = malloc_target;
  152.  
  153.     malloc_target = malloc ((MAX_PRDCTS + 1) * (sizeof (char *)));
  154.  
  155.     if (malloc_target == NULL)
  156.     {
  157.         fprintf (stderr, "Unable to allocate product pointer array\n");
  158.         exit (250);
  159.     }
  160.     PrdctTbl = (char **) malloc_target;
  161.  
  162.     for (Idx = 0; MAX_PRDCTS > Idx; ++Idx)
  163.         PrdctTbl[Idx] = PrdctMem;
  164.     PrdctHdr.ElemCnt = MAX_PRDCTS;
  165.  
  166.     /*
  167.     * Allocate space for the ANSI array
  168.     */
  169.     malloc_target = malloc (MAX_ANSI * 10);
  170.     if (malloc_target == NULL)
  171.     {
  172.         fprintf (stderr, "Unable to allocate product string memory\n");
  173.         exit (250);
  174.     }
  175.     AnsiMem = malloc_target;
  176.  
  177.     /*
  178.     * Now read the stuff into our array.
  179.     *
  180.     */
  181.  
  182.     error = get_language (argv[1]);
  183.     if (error != 0)
  184.         exit (240);
  185.  
  186.     /*
  187.     * Write our stuff out now.
  188.     *
  189.     */
  190.  
  191.     error = put_language (argv[2]);
  192.     if (error != 0)
  193.         exit (230);
  194. }
  195.  
  196. static void 
  197. usage ()
  198. {
  199.     fprintf (stderr, "Usage : BTLNG language_file_name output_file_name\n");
  200.     exit (255);
  201. }
  202.